home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Prog / T / Terminal 2.1 Source Code.cpt / Terminal 2.01 Source / Terminal ƒ / Sources / Glue.a < prev    next >
Encoding:
Text File  |  1990-12-31  |  203 b   |  10 lines  |  [TEXT/MPS ]

  1. ; pascal void SendComplete(void);
  2.  
  3. SendComplete    PROC    EXPORT        ; A0 has address of IOParam
  4.  
  5.                 MOVE.L    -4(A0),A0    ; Get busy flag address
  6.                 CLR.B    0(A0)        ; Clear the busy flag (FALSE)
  7.                 RTS
  8.                 
  9.                 END
  10.